/-app
/-build
/-docs
/-files
/-imports ...
/-imports/acorn
/-imports/codemirror
/-imports/knockout
/-imports/tern
/-imports/typescript ...
lib.d.ts.text
typescriptServices.js
/-imports/zip.js
/-persistence
/-typescript
/-typings
errors.js
functions.ts
index.html
try.js
x
    initPointerEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, viewArg: Window, detailArg: number, screenXArg: number, screenYArg: number, clientXArg: number, clientYArg: number, ctrlKeyArg: boolean, altKeyArg: boolean, shiftKeyArg: boolean, metaKeyArg: boolean, buttonArg: number, relatedTargetArg: EventTarget, offsetXArg: number, offsetYArg: number, widthArg: number, heightArg: number, pressure: number, rotation: number, tiltX: number, tiltY: number, pointerIdArg: number, pointerType: any, hwTimestampArg: number, isPrimary: boolean): void;
1
/*! *****************************************************************************
2
Copyright (c) Microsoft Corporation. All rights reserved. 
3
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
4
this file except in compliance with the License. You may obtain a copy of the
5
License at http://www.apache.org/licenses/LICENSE-2.0  
6
 
7
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
8
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
9
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 
10
MERCHANTABLITY OR NON-INFRINGEMENT. 
11
 
12
See the Apache Version 2.0 License for specific language governing permissions
13
and limitations under the License.
14
***************************************************************************** */
15
​
16
/// <reference no-default-lib="true"/>
17
​
18
/////////////////////////////
19
/// ECMAScript APIs
20
/////////////////////////////
21
​
22
declare var NaN: number;
23
declare var Infinity: number;
24
​
25
/**
26
  * Evaluates JavaScript code and executes it. 
27
  * @param x A String value that contains valid JavaScript code.
28
  */
29
declare function eval(x: string): any;
30
​
31
/**
32
  * Converts A string to an integer.
33
  * @param s A string to convert into a number.
34
  * @param radix A value between 2 and 36 that specifies the base of the number in numString. 
35
  * If this argument is not supplied, strings with a prefix of '0x' are considered hexadecimal.
36
  * All other strings are considered decimal.
37
  */
38
declare function parseInt(s: string, radix?: number): number;
39
​
40
/**
41
  * Converts a string to a floating-point number. 
42
  * @param string A string that contains a floating-point number. 
43
  */
44
declare function parseFloat(string: string): number;
45
​
46
/**
47
  * Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number). 
48
  * @param number A numeric value.
49
  */
50
declare function isNaN(number: number): boolean;
51
​
52
/** 
53
  * Determines whether a supplied number is finite.
54
  * @param number Any numeric value.
55
  */
56
declare function isFinite(number: number): boolean;
57
​
0:0